﻿@import url(http://fonts.googleapis.com/css?family=Open+Sans);

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    width: 100%
}

body {
    height: 100%;
    width: 100%;
    font-family: 'Open Sans', 'Helvetica', 'Times New Roman', sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #4F535F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: #F0F0F0;
}

h1, h2, h3, h4, h5, h6, ul {
    margin: 0;
}

a:hover, a:focus, a:visited, button:hover, button:focus, button:visited {
    outline: none;
}

a, ul, ol, button, .item {
    text-decoration: none;
    -webkit-transition: background-color .2s linear, color .2s linear, border .2s linear;
    transition: background-color .2s linear, color .2s linear, border .2s linear;
}

::selection {
    background: rgba(0,0,0,0.1);
}

::-moz-selection {
    background: rgba(0,0,0,0.1);
}

img::-moz-selection {
    background: transparent;
}

img::selection {
    background: transparent;
}

img::-moz-selection {
    background: transparent;
}

.border {
    display: block;
    width: 100px;
    height: 2px;
    margin: 20px auto;
}

.green {
    color: #62C370;
}

.red {
    color: #D9534F;
}

.light-font {
    color: #FFF;
}

.dark-font {
    color: #282828;
}

.light-border {
    background: none repeat scroll 0 0 #999;
}

.dark-border {
    background: none repeat scroll 0 0 #777;
}

.heightall, .clndr {
    height: 100%
}
/*LOGIN*/
#login {
    background-color: #2D333B;
}

.nopadding {
    padding: 0px;
}

.nomargin {
    margin: 0px;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        -webkit-border-radius: 0 6px 6px 6px;
        -moz-border-radius: 0 6px 6px;
        border-radius: 0 6px 6px 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        min-height: 100px;
        height: 100px;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #fff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            -webkit-border-radius: 6px 0 6px 6px;
            -moz-border-radius: 6px 0 6px 6px;
            border-radius: 6px 0 6px 6px;
        }
/* SIDEBAR */
#intro {
    top: 0;
    position: fixed;
    height: 100%;
    padding: 0 25px;
    color: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #2D333B;
    display: block;
    z-index: 9999;
}

#profile {
    margin: 0 -25px;
    padding: 0 15px 0 15px;
    text-align: center;
}

#intro h1 {
    margin: 8% 0 0 0;
    font-size: 1.75em;
}

#intro h2 {
    margin: 4% 0 0 0;
    font-weight: 300;
    font-size: 1.1em;
    color: #CCC;
}
/* NAVIGATION MENU */
#sidebar {
    margin: 0 -15px 0;
    z-index: 999;
    transform: translate3d(0px,0px,0px);
    -webkit-transform: translate3d(0px,0px,0px);
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-align: left;
}

.sidebar-nav {
    width: 100%;
    list-style: none;
}

    .sidebar-nav li {
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.15);
        line-height: 50px;
    }

.small-client {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    text-align: center;
}

.sidebar-nav li a {
    display: block;
    padding: 0 50px;
    text-transform: uppercase;
    text-decoration: none;
    /*color: #D2D2D2;*/
}

    .sidebar-nav li a .icon {
        margin-right: 8px;
        font-size: 1.2em;
    }

    .sidebar-nav li a .option {
        font-size: 1.1em;
        vertical-align: middle;
    }

    .sidebar-nav li a:active {
        background-color: #62C370;
        color: #FFF;
    }

    .sidebar-nav li a.active {
        background-color: rgba(0, 0, 0, 0.3);
        border-left: 4px solid #62C370;
        color: #FFF;
    }
/* CONTENT */
#top {
    background-color: #3A414C;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 9;
}

#content {
    height: 100%;
    padding-top: 57px;
}

#right {
    height: 100%;
    background-color: #505660;
}

#about, #skills, #portfolio, #contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
}

.section-title {
    width: 100%;
    padding: 15px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #FFF;
}

.section-container {
    width: 95%;
    margin: 0 auto;
    padding: 25px 0;
}

textarea.form-control {
    padding: 10px;
    resize: none;
}
/* FOOTER */

#footer {
    width: 100%;
    background-color: #62C370;
    text-align: center;
    text-transform: uppercase;
}

    #footer h4 {
        padding: 25px 15px;
    }

    #footer a {
        color: #FCFCFC;
    }

    #footer i {
        margin-right: 8px;
    }
/* Blink Animation */
.search-cndr {
    float: right;
    margin: -8px 0 0 23px;
    width: 150px;
}

.blink {
    -webkit-animation: blink .75s linear infinite;
    -ms-animation: blink .75s linear infinite;
    animation: blink .75s linear infinite;
}

.task {
    height: auto;
    margin-bottom: 15px;
}

    .task.hiden {
        height: 40px;
        overflow: hidden;
        border: 1px dotted #3A414C;
        margin-bottom: 15px;
        cursor: pointer;
        margin-bottom: 20px;
    }

        .task.hiden i.ico-list, .task i.ico-list {
            padding-right: 10px;
        }

    .task p {
        padding: 10px;
        border: 1px dotted #3BAAC6;
    }

        .task p.selected {
            border: 1px solid #ff7317
        }

    .task.hiden p {
        border: none;
        margin-bottom: 20px;
    }

@-webkit-keyframes blink {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    50.01% {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@-ms-keyframes blink {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    50.01% {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    50.01% {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}


/* LARGE DEVICES */

@media (min-width: 1600px) {
    .section-container {
        width: 80% !important;
    }
}

/* LOGIN ***********************************************************************************************/

form.form-signin {
    margin-top: 5%;
    color: #fff;
}

    form.form-signin .logo {
        margin: 0 auto 40px;
    }

        form.form-signin .logo img {
            max-width: 300px;
            margin: 0 auto;
            display: block;
        }

    form.form-signin .input-group {
        position: inherit;
        display: flex;
        display: -webkit-flex; /* Safari */
        border-collapse: separate;
        float: none;
        margin: 0 auto 20px;
    }

        form.form-signin .input-group section {
            display: flex;
            display: -webkit-flex; /* Safari */
            margin: 0 auto;
        }

    form.form-signin input.form-control {
        width: 300px;
        height: 50px;
        margin: 0;
        border: 0;
        border-radius: 6px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    form.form-signin select.form-control {
        width: 300px;
        height: 50px;
        margin: 0;
        border: 0;
        border-radius: 6px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;

    }
    form.form-signin span.input-group-addon.span-field {
        border-radius: 6px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        margin: 0;
        width: 50px;
        height: 50px;
    }

    form.form-signin i {
        font-size: 22px;
        margin: 6px 0px;
        color: #b7b7b7;
    }

    form.form-signin .checkbox {
        margin: 0 auto 20px;
        max-width: 350px;
        color: #9A9A9A;
    }

        form.form-signin .checkbox:hover {
            color: #B9B9B9;
            transitions: .25s;
            -webkit-transitions: .25s;
            -moz-transitions: .25s;
            -o-transitions: .25s;
        }

    form.form-signin button {
        background: #af0c28;
        /*box-shadow: 0px 3px 0px 0px #f2b364;*/
        border: 0;
        max-width: 350px;
        margin: 0 auto;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
    }

        form.form-signin button:hover {
            background: #e30027;
            color: #fff;
            transition: .5s;
            -webkit-transition: .5s;
            -moz-transition: .5s;
            -o-transition: .5s;
        }

        form.form-signin button:active {
            background: #ff554d !important;
        }

    form.form-signin > p {
        max-width: 350px;
        margin: 20px auto;
    }

        form.form-signin > p a, p.error-link a {
            text-decoration: none;
            color: #818181;
        }

            form.form-signin > p a:hover, p.error-link a:hover {
                color: #9A9A9A;
                transition: .25s;
                -webkit-transition: .25s;
                -moz-transition: .25s;
                -o-transition: .25s;
            }

.alert {
    margin: 0;
}

div#infoMessage {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 3%;
}

    div#infoMessage p:hover {
        box-shadow: 0px 0px 40px 3px #9f3e3b;
        transition: all 0.5s linear 0.1s;
        -webkit-transition: all 0.5s linear 0.1s;
        -moz-transition: all 0.5s linear 0.1s;
        -o-transition: all 0.5s linear 0.1s;
    }

    div#infoMessage p {
        background-color: rgba(211, 81, 76, 0.9);
        width: 250px;
        margin: 0 auto;
        border-radius: 4px;
        padding: 5px 10px;
        font-weight: 300;
        letter-spacing: 1px;
    }

div#infoMessageBlock {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    padding-top: 3%;
    z-index: 9;
    height: 91%;
    width: 100%;
    background-color: #FFF;
    filter: alpha(opacity=40);
    opacity: .4;
}

    div#infoMessageBlock p:hover {
        box-shadow: 0px 0px 40px 3px #9f3e3b;
        transition: all 0.5s linear 0.1s;
        -webkit-transition: all 0.5s linear 0.1s;
        -moz-transition: all 0.5s linear 0.1s;
        -o-transition: all 0.5s linear 0.1s;
    }

div.infoMessageBlock, p.infoMessageBlock {
    width: auto;
    margin: 0 auto;
    border-radius: 4px;
    padding: 5px 10px;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 65%;
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: 10%;
    cursor: pointer;
}

    div.infoMessageBlock.green, p.infoMessageBlock.green {
        background-color: rgba(223, 240, 216, 0.9);
        color: #3c763d;
        border: 1px solid #d6e9c6;
    }

    div.infoMessageBlock.red, p.infoMessageBlock.red {
        background-color: rgba(211, 81, 76, 0.9);
        color: #fff;
    }

.infoMessageBlock:hover {
    -o-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

button.closeMsg {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}

.closeMsg {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
}

    .closeMsg:focus, .closeMsg:hover {
        color: #FFF;
        text-decoration: none;
        cursor: pointer;
        filter: alpha(opacity=50);
        opacity: .5;
    }

p.infoMessageBlock.green .closeMsg {
    color: #3c763d;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: #FFF;
    background-color: #9E1E29;
    border-color: transparent;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: transparent;
    outline: 0;
    outline-offset: 0;
}

/* HOME *************************************************************************************************/

#profile .logo img {
    margin: 30px auto;
    max-width: 200px;
    width: 100%;
    height: auto;
    border: 0;
}

div#profile nav#sidebar {
    border: 0;
}

.sidebar-nav li {
    border: 0;
    background: #2c333b;
    text-align: center;
    border-left: 3px solid #2c333b;
    line-height: 1;
    cursor: pointer;
}

    .sidebar-nav li:hover, .sidebar-nav li.active {
        background: #1d2027;
        border-left: 3px solid #ff7317;
        transition: all 1s linear 0.1s;
        -webkit-transition: all 1s linear 0.1s;
        -moz-transition: all 1s linear 0.1s;
        -o-transition: all 1s linear 0.1s;
    }

    .sidebar-nav li a {
        padding: 15px 10px 15px 7px;
    }

        .sidebar-nav li a:hover {
            background: transparent;
        }

        .sidebar-nav li a span {
            display: block;
            font-size: 18px;
            letter-spacing: 2px;
        }

        .sidebar-nav li a .icon {
            margin: 0;
        }

            .sidebar-nav li a .icon img {
                height: 40px;
                width: auto;
                border: 0;
            }

        .sidebar-nav li a .option {
            margin-top: 15px;
            color: #6b798a;
            font-weight: 600;
        }

.button-top {
    text-align: right;
    height: 100%;
}

    .button-top a img {
        float: right;
        padding: 1em;
        width: 4em;
    }

        .button-top a img:hover {
            opacity: 0.8;
            transition: all .25s linear 0.1s;
            -webkit-transition: all .25s linear 0.1s;
            -moz-transition: all .25s linear 0.1s;
            -o-transition: all .25s linear 0.1s;
        }

.user-name {
    height: 100%;
    display: table;
}

    .user-name h4 {
        color: #9499a1;
        display: table-cell;
        vertical-align: middle;
        line-height: 3;
    }

        .user-name h4 span {
            font-weight: 600;
        }

.btn-menu {
    color: #000;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}

    .btn-menu:last-child {
        border: 0;
    }

.popover-content {
    padding: 0;
}

.popover {
    border-left: 3px solid #FE7216;
    border-right: 3px solid #FE7216;
}

    .popover.right {
        margin-left: -3px;
    }

    .popover.bottom {
        margin-top: -1px;
    }

.popover-content a.btn.btn-menu {
    padding: 14px 15px;
    margin: 0 15px;
}

    .popover-content a.btn.btn-menu:hover {
        color: #FE7216;
        transition: all .5s linear .1s;
        -webkit-transition: all .5s linear .1s;
        -moz-transition: all .5s linear .1s;
        -o-transition: all .5s linear .1s;
    }

.forgot-pass {
    text-align: center;
    color: #ccc;
    margin: 0 auto;
    padding-top: 8%;
}

    .forgot-pass h1 {
        font-weight: 100;
        font-size: 32px;
        margin-top: 40px;
    }

    .forgot-pass .logo img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    .forgot-pass form.form-signin {
        margin-top: 40px;
    }

        .forgot-pass form.form-signin > p {
            text-align: left;
        }

.content-events {
    background-color: #505660;
    color: #8a98a7;
    min-height: 100%;
}

.form {
    width: 50%;
    margin: 0 auto;
    position: relative;
}

.event-item i.fa {
    padding-right: 5px;
}

    .event-item i.fa.fa-user {
        color: #3BAAC6;
    }

    .event-item i.fa.fa-bookmark {
        color: #4AC382;
    }

    .event-item i.fa.fa-calendar {
        color: #A2C34A;
    }

.event-listing .event-date {
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
}

.event-no-events {
    text-align: center;
}

.menu-entries {
    position: fixed;
    top: 20px;
    margin-left: 13em;
    z-index: 99;
}

    .menu-entries a {
        padding: 0 10px;
        color: #fff;
    }

    .menu-entries button {
        background: transparent;
        padding: 0 10px;
        border: none;
        color: #fff;
    }

.title-entries {
    position: fixed;
    top: 3px;
    margin-left: 0.5em;
    z-index: 999;
}

    .title-entries small {
        color: #fff;
    }

.search-menu-open {
    color: #FFF;
}

.search-menu-close {
    color: #d0423e
}

/* FORM **************************************************************************************************/

.form.add {
    width: 80%;
    margin: 0 auto;
    padding: 1.3em 0 0;
}

    .form.add .form-group {
        /*margin-right: 25px !important;*/
    }

    .form.add .form-group {
        margin: 0;
    }

        .form.add .form-group label:first-child {
            font-weight: 500;
            font-size: 16px;
        }

        .form.add .form-group option {
            color: #3A414C;
        }

            .form.add .form-group input,
            .form.add .form-group select,
            .form.add .form-group option:first-child {
                font-weight: 300;
            }

    .form.add .button button, a.add-btn, .form.add.deactivate input[type=submit] {
        float: right;
        padding: 5px 15px;
        color: #fff;
        border: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 15px 15px 30px;
    }

        .form.add .button button:hover, .form.add.deactivate input[type=submit]:hover {
            -o-transition: 0.2s;
            -moz-transition: 0.2s;
            -ms-transition: 0.2s;
            -webkit-transition: 0.2s;
            transition: 0.2s;
        }

.button {
    width: 100%;
}

button.return-btn {
    background: #D0423E;
    float: left !important;
}

    button.return-btn:hover {
        background: #B23632;
    }

button.add-btn,
a.add-btn {
    background: #3BAAC6;
}

    button.add-btn:hover,
    a.add-btn:hover {
        background: #3392AA;
        text-decoration: none;
    }

button.save-btn,
.form.add.deactivate input[type=submit] {
    background: #4AC382;
}

    button.save-btn:hover,
    .form.add.deactivate input[type=submit]:hover {
        background: #29AA64;
    }

button[disabled].save-btn {
    pointer-events: none;
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

button i.fa,
a i.fa {
    margin-right: 5px;
}

.form.add .row.margin {
    margin-bottom: 20px;
}
/*TABLES*/
.dataTables_wrapper .dataTables_filter {
    position: fixed;
    top: 19px;
    margin-left: 19em;
    height: 30px;
    z-index: 9999;
}

    .dataTables_wrapper .dataTables_filter i {
        cursor: pointer;
        vertical-align: middle;
    }

    .dataTables_wrapper .dataTables_filter input,
    .dataTables_wrapper .dataTables_filter select {
        background: transparent;
        border: 1px solid #F0F0F0;
        color: #F0F0F0;
        font-weight: normal;
        padding: 2px;
        display: none;
    }
/*input[type=text], 
input[type=email], 
textarea.form-control {
    margin: 5px 0;
}*/

/* TABLES ********************************************************************************************************************/

table.dataTable thead th,
table.dataTable thead td,
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    border: 0 !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background: transparent;
}

table.dataTable.no-footer {
    border-bottom: 0 !important;
}

table.dataTable tbody tr {
    background-color: transparent !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background: #fff !important;
}

input#date {
    height: 35px;
    margin: 0;
}

.panel.panel-default.list {
    margin: 15px;
}

    .panel.panel-default.list thead {
        background: #F0F0F0;
    }

        .panel.panel-default.list thead th {
            padding: 5px 10px;
            line-height: 2;
        }

    .panel.panel-default.list tbody td {
        padding: 5px 10px;
    }

span.glyphicon.glyphicon-refresh {
    margin: 15px 15px 0;
    padding: 10px;
    background: #fff;
    border: 1px solid #DDD;
    border-radius: 5px;
    cursor: pointer;
}

    span.glyphicon.glyphicon-refresh:hover {
        background: #f5f5f5;
        -o-transition: 0.2s;
        -moz-transition: 0.2s;
        -ms-transition: 0.2s;
        -webkit-transition: 0.2s;
        transition: 0.2s;
    }

.form-group h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

th.schedule,
td.check {
    width: 90px;
}

td.check {
    text-align: center;
}

i.fa.fa-check {
    font-size: 16px;
}

.form.add.schedule h4 {
    display: block;
    margin-bottom: 10px;
}

.form.add.schedule span {
    padding: 5px 10px;
    display: block;
    background: #fff;
    margin-bottom: 20px;
    color: #6C798A;
}

.title-entries small {
    font-size: 18px;
    font-weight: 300;
}

.form.add.deactivate > p {
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.form.add.deactivate p input {
    display: initial;
    margin: 0px 15px 0 5px;
}

div#user {
    padding-left: 0;
    padding-top: 20px;
}

@media (max-width: 767px) {
    #intro {
        position: static;
        width: 100%;
        height: auto;
    }

        #intro h1 {
            margin: 25px 0 0 0;
        }

        #intro h2 {
            margin: 10px 0 0 0;
        }

    #profile {
        padding: 50px 15px 28px 15px;
        font-size: 1.25em;
    }

        #profile img {
            height: 35px;
            width: auto;
        }

        #profile #sidebar {
            font-size: 0.8em;
        }

    #sidebar {
        top: 0;
        position: fixed;
        width: 100%;
        background: #111;
        border-bottom: none;
        text-align: center;
    }

    .sidebar-nav li {
        display: inline-block;
        width: 20%;
        border-top: none;
        line-height: 50px;
    }

        .sidebar-nav li:first-child {
            border-left: none;
        }

        .sidebar-nav li a {
            padding: 0;
        }

            .sidebar-nav li a .option {
                margin: 0;
            }

            .sidebar-nav li a:hover,
            .sidebar-nav li a:active,
            .sidebar-nav li a:focus {
                background-color: transparent;
            }

            .sidebar-nav li a.active {
                background-color: #62C370;
                border-left: none;
            }

    ul.flexbox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    #profile .logo img {
        margin: 19px auto;
        max-width: 55px;
        width: 55px;
        height: auto;
        border: 0;
    }

    .button-top a img {
        width: 3.4em;
    }

    .sidebar-nav li a .icon {
        margin: 12px auto;
    }

    #top {
        width: 100%;
        top: 77px;
    }

    .content-events {
        min-height: 0;
    }

    #content {
        height: auto;
    }

    .menu-entries {
        top: 88px;
        margin-left: 8em;
    }

        .menu-entries a i, .menu-entries button i, .dataTables_wrapper .dataTables_filter label i {
            font-size: 10px;
        }

    .dataTables_wrapper .dataTables_filter input,
    .dataTables_wrapper .dataTables_filter select {
        width: 71px;
        font-size: 10px;
    }

    .dataTables_wrapper .dataTables_filter {
        top: 81px;
        margin-left: 12.1em;
    }

    .title-entries {
        top: 71px;
        margin-left: 10px;
    }

        .title-entries small {
            font-size: 15px;
        }

    .menu-entries a {
        padding: 0 5px;
    }

    .sidebar-nav li {
        border-top: 3px solid #2c333b;
        border-left: none;
    }

        .sidebar-nav li:hover, .sidebar-nav li.active {
            border-top: 3px solid #ff7317;
            border-left: none;
        }

    .search-cndr {
        margin: -4px 0 0 23px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    #intro {
        position: static;
        width: 100%;
        height: auto;
    }

        #intro h1 {
            margin: 25px 0 0 0;
        }

        #intro h2 {
            margin: 10px 0 0 0;
        }

    #profile {
        padding: 50px 15px 54px 15px;
        font-size: 1.25em;
    }

        #profile img {
            height: 35px;
            width: auto;
        }

        #profile #sidebar {
            font-size: 0.8em;
        }

    #sidebar {
        top: 0;
        position: fixed;
        width: 100%;
        background: #111;
        border-bottom: none;
        text-align: center;
    }

    .sidebar-nav li {
        display: inline-block;
        width: 20%;
        border-top: none;
        line-height: 50px;
    }

        .sidebar-nav li:first-child {
            border-left: none;
        }

        .sidebar-nav li a {
            padding: 0;
        }

            .sidebar-nav li a .option {
                margin: 0;
            }

            .sidebar-nav li a:hover,
            .sidebar-nav li a:active,
            .sidebar-nav li a:focus {
                background-color: transparent;
            }

            .sidebar-nav li a.active {
                background-color: #62C370;
                border-left: none;
            }

    ul.flexbox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    #profile .logo img {
        margin: 19px auto;
        max-width: 120px;
        width: 100%;
        height: auto;
        border: 0;
    }

    #top {
        width: 100%;
        top: 102px;
    }

    #full-clndr .event-listing .event-item {
        padding: 15px 10px;
        float: left;
        width: 25%;
    }

    .event-no-events {
        padding: 5px 0 10px;
    }

    .menu-entries {
        top: 120px;
    }

    .title-entries {
        top: 102px;
    }

    #content {
        padding-top: 57px;
    }

    .dataTables_wrapper .dataTables_filter {
        top: 119px;
    }

    .sidebar-nav li {
        border-top: 3px solid #2c333b;
        border-left: none;
    }

        .sidebar-nav li:hover, .sidebar-nav li.active {
            border-top: 3px solid #ff7317;
            border-left: none;
        }
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
    border-bottom: 1px solid #4F535F !important;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    color: #4F535F !important;
}

.dataTables_scrollBody {
    position: relative;
}

    .dataTables_scrollBody table {
        width: 100% !important;
    }

button.btn.dropdown-toggle.selectpicker.btn-default {
    margin: 0;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    font-weight: 300;
}

.engine-itens {
    float: right;
    margin: -20px 0px 0 0;
    border: none;
    color: #000;
}

    .engine-itens ul {
        min-width: 75px;
    }

    .engine-itens button {
        background: transparent;
        border: none;
    }

    .engine-itens ul.dropdown-menu {
        right: 0;
        left: inherit;
    }

i.error {
    font-size: 10em;
    margin-bottom: 20px;
}

.plogin {
    min-height: 1.5em;
}

i.required {
    font-size: 5px;
    color: #D0423E;
    float: left;
    width: 8px;
    padding-top: 3px;
}

.label-radio {
    font-size: 14px !important;
    font-weight: 400 !important;
    margin-left: 10px;
}

#calendar {
    padding: 20px;
}

button.btn-calendar {
    display: block;
    margin: 20px 20px 0;
    float: left;
    position: absolute;
    z-index: 1;
}

    button.btn-calendar:hover {
        background-color: #EAEAEA;
        transition: 0.75s;
        -webkit-transition: 0.75s;
        -moz-transition: 0.75s;
        -o-transition: 0.75s;
        -ms-transition: 0.75s;
    }

div#full-clndr .clndr > .col-lg-1.col-md-1.col-sm-1.col-xs-1.nopadding,
div#full-clndr .clndr > .col-lg-7.col-md-10.col-sm-10.col-xs-10.nopadding {
    padding-top: 44px;
}

.tooltipevent {
    width: 250px;
    height: auto;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
    position: absolute;
    z-index: 10001;
    padding: 5px;
}

    .tooltipevent p {
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        white-space: nowrap;
        display: block;
        margin: 0;
    }

        .tooltipevent p i {
            margin-right: 5px;
        }
